home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / doc / efun / last_bit < prev    next >
Text File  |  2001-04-06  |  645b  |  22 lines

  1. SYNOPSIS
  2.         int last_bit (string str)
  3.  
  4. DESCRIPTION
  5.         Return the number of the last set bit in bitstring <str>.
  6.  
  7.         Each character contains 6 bits. So you can store a value
  8.         between 0 and 63 in one character (2^6=64). Starting character
  9.         is the blank " " which has the value 0. The first character in
  10.         the string is the one with the lowest bits (0-5).
  11.  
  12. EXAMPLES
  13.         string s;
  14.  
  15.         s = set_bit("", 4); s = set_bit(s, 2);
  16.  
  17.         last_bit(s) --> returns 4
  18.  
  19. SEE ALSO
  20.         set_bit(E), clear_bit(E), next_bit(E), test_bit(E), count_bits(E),
  21.         and_bits(E), or_bits(E), xor_bits(E), invert_bits(E)
  22.